home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / msqc25t1 / child.c < prev    next >
C/C++ Source or Header  |  1990-09-04  |  683b  |  33 lines

  1. /* child.c: Chile process
  2.     This program is invoked by a apawn..() or exec...()
  3.     call. List arguments passed and the enviroment
  4.     strings COMSPEC, PROMPT, PATH, and XYZ
  5. */
  6.  
  7. #include <stdlib.h>
  8. #include <stdio.h>
  9.  
  10. void main (int argc, char *argv[])
  11. {
  12. int n;
  13. char *estr, *var[] = {"COMSPEC", "PROMPT", "PATH", "XYZ"};
  14.  
  15.     puts ("\n\nIn child process, arguments are:");
  16.  
  17.     for (n = 0; n < argc; n++)
  18.         printf (" argv [%d] = %s", n, argv [n]);
  19.  
  20.     puts ("\n\nChild's environmental strings are:");
  21.  
  22.     for (n = 0; n < 4; n++) {
  23.  
  24.         estr = getenv (var [n]);
  25.  
  26.         printf ("  %s = %s\n", var [n],
  27.                     estr == NULL ? "(nonexistent)" : estr);
  28.     }
  29.  
  30.     exit (EXIT_SUCCESS);
  31. }
  32.  
  33.